home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1998 October
/
Macworld (1998-10).dmg
/
Shareware World
/
Info
/
For Developers
/
Drop UNIX 1.3.1
/
Example App
/
Main.c
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1997-01-18
|
319 b
|
19 lines
|
[
TEXT/CWIE
]
#include <stdio.h>
#include "Main.h" /* REQUIRED for UNIX file conversion! */
/*
** NOTE:
** DropUNIX.Lib is not included with the project,
** you must build it before this will link.
*/
int main(int argc, char ** argv) {
int i;
for (i = 0; i < argc; i++) {
printf("%02d\t%s\n", i, argv[i]);
}
return 0;
}